[USER (data scientist)]: That looks good! Now, let's talk about storage capacity. I want SSDs to have a base score of 50, HDDs to get 20, and then add the storage size in GB divided by 100 to the base score.  Please generate a function to calculate a storage score for each laptop based on its storage type and size, returning an integer score, in the context of the 'laptops_price' DataFrame loaded from a CSV file.
My template of code snippet is:

---BEGIN CODE TEMPLATE---

import pandas as pd
import pickle
import re 

laptops_price = pd.read_csv("laptops_price.csv")

# YOUR SOLUTION BEGIN:
<code1>
[GENERATE YOUR CODE]
</code1>
# YOUR SOLUTION END:

---END CODE TEMPLATE---

[YOU (AI assistant)]: Alright, I understand. Here's a function to calculate the storage capacity score based on your preferences: 
